Period Property (MovingAverage<T>)
In This Topic
Gets or sets the period of the moving average line.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(2)>
Public Property Period As System.Integer
'Usage
Dim instance As MovingAverage(Of T)
Dim value As System.Integer
instance.Period = value
value = instance.Period
[System.ComponentModel.DefaultValue(2)]
public System.int Period {get; set;}
public read-write property Period: System.Integer;
System.ComponentModel.DefaultValueAttribute(2)
public function get,set Period : System.int
[System.ComponentModel.DefaultValue(2)]
public: __property System.int get_Period();
public: __property void set_Period(
System.int value
);
[System.ComponentModel.DefaultValue(2)]
public:
property System.int Period {
System.int get();
void set ( System.int value);
}
See Also